home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / KEYLIST.HDR < prev    next >
Text File  |  1994-04-25  |  1KB  |  41 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _KeyList( cKey_List, cKey_Color, nKey_Line ) --> NIL
  8.  
  9. PARAMETERS:
  10.  
  11. cKey_List  : text string to print on the screen
  12. cKey_Color : color to use
  13. nKey_Line  : Screen Line to print to
  14.  
  15. SHORT:
  16.  
  17. Present a line of text on a given line.
  18.  
  19. DESCRIPTION:
  20.  
  21. _KeyList() is used to print a text string at line MAXROW() in the color
  22. specified in cKey_Color.  If cKey_Color is not specified, the current color
  23. setting is used.
  24.  
  25. This function is used primarily in conjunction with _FScreen(), _Menu(), and
  26. _MenuA() as part of an overall screen management scheme that this library
  27. supports.
  28.  
  29. NOTE:
  30.  
  31.  
  32.  
  33. EXAMPLE:
  34.  
  35. _KeyList('F1 - Help, Esc - Quit')
  36.  
  37. Result: "F1 - Help, Esc - Quit" is printed on line MAXROW() of the screen
  38. in the current color setting.
  39.  
  40. ******************************************************************************/
  41.